home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: debug.e V0.9B
- **
- ** (C) Copyright 1996-1997 DreamWorld Productions.
- ** All Rights Reserved.
- */
-
- OPT MODULE
- OPT EXPORT
- OPT PREPROCESS
-
- MODULE 'dpkernel/dpkernel','system/register','graphics/screens',
- 'exec/libraries','system/misc','files/files','system/modules'
-
- /*****************************************************************************
- ** This is a list of recognised Debug Messages that can be sent to
- ** DebugMessage(). Note that these messages will only be seen if you are
- ** running a GMS debugger such as IceBreaker. For messages that go to
- ** ErrCode(), see ERR_* in dpkernel/dpkernel.i.
- */
-
- CONST DBG_Error = 0, /* Simple error message */
- DBG_Formatted = 1, /* Formatted (printf style) message */
- DBG_BoldMessage = 2, /* Information message */
- DBG_Message = 3,
- DBG_FreeMemBlock = 4,
- DBG_Load = 5,
- DBG_CopyStructure = 6,
- DBG_AddInputHandler = 7,
- DBG_RemInputHandler = 8,
- DBG_a = 9,
- DBG_AllocBlitter = 10,
- DBG_FreeBlitter = 11,
- DBG_AllocBlitMem = 12,
- DBG_AllocVideoMem = 13,
- DBG_AllocSoundMem = 14,
- DBG_AllocAudio = 15,
- DBG_FreeAudio = 16,
- DBG_b = 17,
- DBG_c = 18,
- DBG_FindGMSTask = 19,
- DBG_MoveToFront = 20,
- DBG_Switch = 21,
- DBG_GMSOpened = 22,
- DBG_GMSClosed = 23,
- DBG_d = 24,
- DBG_Get = 25,
- DBG_SelfDestruct = 26,
- DBG_Armageddon = 27,
- DBG_FingerOfDeath = 28,
- DBG_InitDestruct = 29,
- DBG_BlankOn = 30,
- DBG_BlankOff = 31,
- DBG_GetObjectList = 32,
- DBG_GetObject = 33,
- DBG_OpenFile = 34,
- DBG_Free = 35,
- DBG_MoveToBack = 36,
- DBG_TakeDisplay = 37,
- DBG_ReturnDisplay = 38,
- DBG_Awaken = 39,
- DBG_CreateMasks = 40,
- DBG_SetBobFrames = 41,
- DBG_AllocMemBlock = 42,
- DBG_Init = 43,
- DBG_Display = 44,
- DBG_Hide = 45
-
- CONST DSTEP = $80000000,
- DHIGH = $40000000,
- DMED = $20000000,
- DLOW = 0 /* Default */
-